Code notation
Code snippets
By adding backticks, all symbols and characters such as [ are displayed as is. They no longer have normal Cosense syntax properties and are syntax highlighted.
Example: alert('Hello [World]')
CLI notation
Typing$ or % at the beginning of the line also works to make code comments
Examples:
$ git reset --hard HEAD^
% reboot
Example:
code:test.js
function() {
alert('Hello world')
}